From 3741b397bda9822d589428214110330cf1c143de Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Tue, 15 Nov 2005 19:46:48 +0100 Subject: [PATCH] Fix 64-bit build that I broke by making acpi table mapping fixup dependent on CONFIG_XEN_X86 (that only xen/i386 defines). Signed-off-by: Keir Fraser --- linux-2.6-xen-sparse/drivers/acpi/tables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-2.6-xen-sparse/drivers/acpi/tables.c b/linux-2.6-xen-sparse/drivers/acpi/tables.c index 59172d3e9d..a849e65c85 100644 --- a/linux-2.6-xen-sparse/drivers/acpi/tables.c +++ b/linux-2.6-xen-sparse/drivers/acpi/tables.c @@ -565,7 +565,7 @@ acpi_table_get_sdt ( * * result: sdt_entry[] is initialized */ -#ifdef CONFIG_XEN_X86 +#if defined(CONFIG_XEN_X86) || defined(CONFIG_XEN_X86_64) #define acpi_rsdp_phys_to_va(rsdp_phys) (__fix_to_virt(FIX_ACPI_RSDP_PAGE) + \ (rsdp_phys & ~PAGE_MASK)) #else -- 2.30.2